home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Varios Español
/
Varios Español.iso
/
PMAKER65
/
archive.z
/
AJUSTAR INGLETE DE POLIGONO....SPT
< prev
next >
Wrap
Text File
|
1997-01-13
|
1KB
|
41 lines
-- Adjust Polygon Miter Limit...
-- 1 Oct 96, bb
-- Este gui≤n ajusta el lφmite del inglete en un polφgono. Es muy ·til
-- para polφgonos internos con ßngulos angudos.
getselectlist => num, ..., elementType, ...
if not(elementType = 12) // Type 12 is polygon
return unquote("Estado no vßlido. Seleccione un polφgono.")
endif
getpolygonmiterlimit => pmlimit
curLimitMessage = "El lφmite del inglete actual es " + str(pmlimit)
newLimitMessage = "Introduzca un nuevo lφmite:"
getplatform => platform
if platform = MACINTOSH
dialogbegin -150,-175,52,-50,"Ajustar inglete de un polφgono"
static 4,4,185,25, curLimitMessage
static 21,25,185,40, newLimitMessage
edit 25,50,175,70, ""
pushbutton 25,80,95,110,"Cancelar"
pushbutton 105,80,175,110,"OK"
else
dialogbegin -60,-70,75,-5,"Ajustar el lφmite de inglete de un polφgono"
static 4,4,120,40, curLimitMessage
static 4,20,110,35, newLimitMessage
edit 10,31,74,41, ""
pushbutton 10,45,45,58,"Cancelar"
pushbutton 49,45,84,58,"OK"
endif
dialogend => buttonHit,...,...,newlimit,...
if buttonHit="OK"
polygonmiterlimit unquote(newlimit)
endif
return